home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT AliveStamp.xpl < prev    next >
Text File  |  2001-04-13  |  1KB  |  36 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="System\Timeouts"
  5. "NAME"="Last Alive Stamp Interval"
  6. "VERSION"="1.05"
  7. "OSVERSION"="0101011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Interval (minutes)"
  10. "DESCRIPTION 1"="If Windows NT 4.0 (SP5), Windows 2000 or Windows XP is installed, Windows will write a "Clean Shutdown" signal to the registry every time it is shutdown normally. If Windows is started and no "Clean Shutdown" signal is found, Windows assumes that a "Dirty Shutdown" has occurred and this is written to the event log (ID: 6008).  If this happens, Windows will add the last alive stamp to this event also."
  11. "DESCRIPTION 2"="The interval how often this last alive stamp is noted can be changed here (minutes). To disable this feature, enter 0 - the default value is 5. "
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. sPath="HKLM\Software\Microsoft\Windows\CurrentVersion\Reliability\TimeStampInterval" 'DW
  19. Sub Plugin_Initialize 
  20.     i=RegReadValue(sPath)
  21.     SetUIElement 1,i
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  i=GetUIElement(1)
  29.  Call RegWriteValue(sPath,i,2)
  30.  
  31.  Call Restart
  32. End Sub
  33.  
  34. Sub Plugin_Terminate 
  35. End Sub
  36.